home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / dos_win / winsock / maillist / 94-04.Z / 94-04 / text0204.txt < prev    next >
Encoding:
Text File  |  1994-04-30  |  5.0 KB  |  112 lines

  1. Will someone please email to me information about Internet SLIP/PPP access in
  2. Charleston, SC and Sacramento, CA.  I have some colleagues who need 
  3. to have access to email and Mosaic in those cities.
  4.  
  5. Also, I would appreciate the same information for Philadelphia, PA.
  6.  
  7. *=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=*
  8. | James R. Garven                                                        
  9. | ----------------------------------------------------------------------  
  10. | Department of Finance, CBA 6.222   Voice:    (512) 471-6557            
  11. | Graduate School of Business        Fax:      (512) 471-5073         
  12. | University of Texas                Internet: jgarven@mcl.cc.utexas.edu   
  13. | Austin, TX  78712, U.S.A.          BITNET:   jim.garven@utxvm.bitnet   
  14. *=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=*
  15. | Moderator of RISKNet, a worldwide Internet mailing list/ftp/gopher/world
  16. | wide web service devoted to risk and insurance issues:
  17. |1. RISKNet Mailing List: Send subscription requests to jgarven@mcl.cc.utexas.edu
  18. |2. World Wide Web Home Page: http://riskweb.bus.utexas.edu
  19. *=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=*
  20. From news@bigblue.oit.unc.edu Thu Apr 14 12:36:06 1994
  21. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  22.           id AA08565; Sat, 16 Apr 1994 21:43:44 -0400
  23. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  24.           id AA31297; Sat, 16 Apr 1994 20:32:25 -0500
  25. Received: from GATEWAY by bigblue with netnews
  26.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  27. To: winsock@sunsite.unc.edu
  28. Date: Thu, 14 Apr 1994 17:36:06 -0500
  29. From: hpapaleo@magnus.acs.ohio-state.edu (HB Papaleonardos)
  30. Message-Id: <hpapaleo.20.00948CE9@magnus.acs.ohio-state.edu>
  31. Organization: The Ohio State University
  32. Sender: ses
  33. References: <hpapaleo.19.00422E00@magnus.acs.ohio-state.edu>, <2ok0ru$gqo@charm.magnus.acs.ohio-state.edu>
  34. Subject: Re: Dynamically Assigned Address Server, anyone?
  35.  
  36. >There's nothing secret about finger @slippry1... working.  I asked
  37. >someone for the tty <-> IP address mappings, but you could find
  38. >those out without any help just by querying the nameserver.
  39.  
  40.     Could you tell us all someplace to get them from?
  41.  
  42. >You shouldn't need to write any code to make it work under Windoze.
  43. >If you can find a telnet client that can be redirected to a file, just
  44. >iterate through the terminal servers connecting to port 79.
  45.  
  46.     Or I could dig up the code for a finger and specialize it for
  47. this purpose.  Anyone know of a telnet client whose output can be
  48. redirected to a file?
  49.  
  50. --
  51. |"Let's not spoil what we have together by talking." --Dan Fielding|
  52. | hpapaleo@magnus.acs.ohio-state.edu               Delphi: WTHUNDER|
  53. | NetworKING BBS: +1 614 868 4793              "And no place else."|
  54. From news@bigblue.oit.unc.edu Sun Apr 1From uli@koala.muc.de Sun Apr 17 17:15:18 1994
  55. Received: from colin.muc.de by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  56.           id AA08492; Sun, 17 Apr 1994 12:04:53 -0400
  57. Received: from koala by colin.muc.de with UUCP id <135952>; Sun, 17 Apr 1994 18:04:45 +0200
  58. Received: by koala.muc.de (1.65/waf)
  59.     via UUCP; Sun, 17 Apr 94 15:15:22 CET
  60.     for winsock@sunsite.unc.edu
  61. From: Uli Mittermaier <uli@koala.muc.de>
  62. Date:     Sun, 17 Apr 1994 15:15:18 +0200
  63. Message-Id: <GrYstApNCh107h@koala.muc.de>
  64. Cc: winsock@sunsite.unc.edu
  65. To: winsock@sunsite.unc.edu
  66. Subject: WinSock-Progr: Problems with accept()-ing incoming connections
  67. X-Mailer: Helldiver 1.07 (Waffle 1.65)
  68. Lines: 42
  69.  
  70. Hi!
  71.  
  72. I am trying to program a WinSock-Server-Software in Borlands Turbo Pascal
  73. for Windows 1.5.
  74.  
  75. At first I call WSAStartUp(), then Socket(), Bind(), Listen() and
  76. WSAAsyncSelect(SocketID, HWindow, WM_Connection, FD_ACCEPT).
  77.  
  78. My Problem:
  79. When I try to call Accept() I get a error-message (WSAENOTSOCK) that the 
  80. socket on which I want to establish the connection (the same socket that 
  81. I created successfullly before - as mentioned above) does not exist. The 
  82. really strange thing is, that TCPMAN of Trumpet-WinSock tells me that I try
  83. to establish a connection on a socket different from that I did actually
  84. pass to accept. For example, when I try to accept a call on socket #1 the
  85. WinSock-DLL tells me that I can't accept it on 12335 (that number varies).
  86.  
  87. I call accept() like this:
  88.  
  89.   AcceptSocket:=accept(SocketID, sockad, sizeof(sockad));
  90.  
  91. AcceptSocket is of type socket, SocketID is the socket I am listening,
  92. sockad is of type sockaddr.
  93. Is this correct?
  94.  
  95. Has anybody experience in WinSock programming in TPW 1.5? I am also very
  96. interested in source code of WinSock application!
  97.  
  98. Is any literature available that covers WinSock-programming?
  99.  
  100. Thank you very much!!
  101.  
  102. Best regards,
  103. Uli Mittermaier
  104.  
  105. -- 
  106. *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
  107. |  Uli Mittermaier                      Internet:   uli@koala.muc.de        |
  108. *  D-84405 Dorfen                       CompuServe: [100270,1200]           *
  109. |  Germany                              UUCP:       uunet!muc.de!koala!uli  |
  110. *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
  111.  
  112.